{
  "bundles": [
    {
      "@type": "NXBundle",
      "artifactId": "nuxeo-runtime-datasource",
      "artifactVersion": "7.10",
      "bundleGroup": {
        "@type": "NXBundleGroup",
        "bundleIds": [
          "org.nuxeo.connect.standalone",
          "org.nuxeo.launcher.commons",
          "org.nuxeo.osgi",
          "org.nuxeo.runtime",
          "org.nuxeo.runtime.datasource",
          "org.nuxeo.runtime.jtajca",
          "org.nuxeo.runtime.management",
          "org.nuxeo.runtime.metrics",
          "org.nuxeo.runtime.nuxeo-runtime-deploy",
          "org.nuxeo.runtime.reload"
        ],
        "hierarchyPath": "/grp:org.nuxeo.runtime",
        "id": "grp:org.nuxeo.runtime",
        "name": "org.nuxeo.runtime",
        "parentIds": [],
        "readmes": [],
        "version": "7.10"
      },
      "bundleId": "org.nuxeo.runtime.datasource",
      "components": [
        {
          "@type": "NXComponent",
          "componentClass": "org.nuxeo.runtime.datasource.DataSourceComponent",
          "documentation": "\n\t\tComponent use to register datasources.\n\n\t\tExample contribution:\n\n\t\t<code>\n    <datasource driverClassName=\"org.apache.derby.jdbc.EmbeddedDriver\"\n        maxActive=\"20\" maxIdle=\"5\" maxWait=\"10000\" name=\"jdbc/foo\">\n        <property name=\"url\">jdbc:derby:/home/db;create=true</property>\n        <property name=\"username\">nuxeo</property>\n        <property name=\"password\">nuxeo</property>\n    </datasource>\n</code>\n\n\n\t\tOr, for a XA datasource:\n\n\t\t<code>\n    <datasource maxActive=\"20\" maxIdle=\"5\" maxWait=\"10000\"\n        name=\"jdbc/foo\" xaDataSource=\"org.apache.derby.jdbc.EmbeddedXADataSource\">\n        <property name=\"databaseName\">/home/db</property>\n        <property name=\"createDatabase\">create</property>\n        <property name=\"user\">nuxeo</property>\n        <property name=\"password\">nuxeo</property>\n    </datasource>\n</code>\n\n\n\t\tThe allowed attributes of a\n\t\t<b>datasource</b>\n\n\t\telement are:\n\t\t<ul>\n    <li>\n        <b>name</b>\n\t\t\t\tthe JNDI name (for instance\n\t\t\t\t<tt>jdbc/foo</tt>\n\t\t\t\t)\n\t\t\t</li>\n    <li>\n        <b>driverClassName</b>\n\t\t\t\tthe JDBC driver class name (only for a non-XA datasource)\n\t\t\t</li>\n    <li>\n        <b>xaDataSource</b>\n\t\t\t\tthe XA datasource class name (only for a XA datasource)\n\t\t\t</li>\n</ul>\n<p/>\n\n\t\tTo configure the characteristics of the pool:\n\t\t<ul>\n    <li>\n        <b>maxActive</b>\n\t\t\t\tthe maximum number of active connections\n\t\t\t</li>\n    <li>\n        <b>minIdle</b>\n\t\t\t\tthe minimum number of idle connections\n\t\t\t</li>\n    <li>\n        <b>maxIdle</b>\n\t\t\t\tthe maximum number of idle connections\n\t\t\t</li>\n    <li>\n        <b>maxWait</b>\n\t\t\t\tthe maximum number of milliseconds to wait for a connection to\n\t\t\t\tbe\n\t\t\t\tavailable, or -1 (the default) to wait indefinitely\n\t\t\t</li>\n    <li>\n\t\t\t\t... see org.apache.commons.dbcp.BasicDataSource setters for more.\n\t\t\t</li>\n</ul>\n<p/>\n\n\t\tTo configure the datasource, individual property sub-elements must be\n\t\tused.\n\t\tFor a non-XA datasource,\n\t\t<b>url</b>\n\n\t\t,\n\t\t<b>username</b>\n\n\t\tand\n\t\t<b>password</b>\n\n\t\tare commonly used. For a XA datasource, the properties are done\n\t\taccording\n\t\tto the JavaBean setters of the datasource, see the\n\t\tdocumentation for\n\t\tyour\n\t\tJDBC driver for more.\n\t\n",
          "documentationHtml": "<p>\nComponent use to register datasources.\n</p><p>\nExample contribution:\n</p><p>\n</p><pre><code>    &lt;datasource driverClassName&#61;&#34;org.apache.derby.jdbc.EmbeddedDriver&#34;\n        maxActive&#61;&#34;20&#34; maxIdle&#61;&#34;5&#34; maxWait&#61;&#34;10000&#34; name&#61;&#34;jdbc/foo&#34;&gt;\n        &lt;property name&#61;&#34;url&#34;&gt;jdbc:derby:/home/db;create&#61;true&lt;/property&gt;\n        &lt;property name&#61;&#34;username&#34;&gt;nuxeo&lt;/property&gt;\n        &lt;property name&#61;&#34;password&#34;&gt;nuxeo&lt;/property&gt;\n    &lt;/datasource&gt;\n</code></pre><p>\nOr, for a XA datasource:\n</p><p>\n</p><pre><code>    &lt;datasource maxActive&#61;&#34;20&#34; maxIdle&#61;&#34;5&#34; maxWait&#61;&#34;10000&#34;\n        name&#61;&#34;jdbc/foo&#34; xaDataSource&#61;&#34;org.apache.derby.jdbc.EmbeddedXADataSource&#34;&gt;\n        &lt;property name&#61;&#34;databaseName&#34;&gt;/home/db&lt;/property&gt;\n        &lt;property name&#61;&#34;createDatabase&#34;&gt;create&lt;/property&gt;\n        &lt;property name&#61;&#34;user&#34;&gt;nuxeo&lt;/property&gt;\n        &lt;property name&#61;&#34;password&#34;&gt;nuxeo&lt;/property&gt;\n    &lt;/datasource&gt;\n</code></pre><p>\nThe allowed attributes of a\n<b>datasource</b>\n</p><p>\nelement are:\n</p><ul><li>\n<b>name</b>\nthe JNDI name (for instance\njdbc/foo\n)\n</li><li>\n<b>driverClassName</b>\nthe JDBC driver class name (only for a non-XA datasource)\n</li><li>\n<b>xaDataSource</b>\nthe XA datasource class name (only for a XA datasource)\n</li></ul>\n<p>\nTo configure the characteristics of the pool:\n</p><ul><li>\n<b>maxActive</b>\nthe maximum number of active connections\n</li><li>\n<b>minIdle</b>\nthe minimum number of idle connections\n</li><li>\n<b>maxIdle</b>\nthe maximum number of idle connections\n</li><li>\n<b>maxWait</b>\nthe maximum number of milliseconds to wait for a connection to\nbe\navailable, or -1 (the default) to wait indefinitely\n</li><li>\n... see org.apache.commons.dbcp.BasicDataSource setters for more.\n</li></ul>\n<p>\nTo configure the datasource, individual property sub-elements must be\nused.\nFor a non-XA datasource,\n<b>url</b>\n</p><p>\n,\n<b>username</b>\n</p><p>\nand\n<b>password</b>\n</p><p>\nare commonly used. For a XA datasource, the properties are done\naccording\nto the JavaBean setters of the datasource, see the\ndocumentation for\nyour\nJDBC driver for more.\n</p><p></p>",
          "extensionPoints": [
            {
              "@type": "NXExtensionPoint",
              "componentId": "org.nuxeo.runtime.datasource",
              "descriptors": [
                "org.nuxeo.runtime.datasource.DataSourceDescriptor",
                "org.nuxeo.runtime.datasource.DataSourceLinkDescriptor"
              ],
              "documentationHtml": "",
              "hierarchyPath": "/grp:org.nuxeo.runtime/org.nuxeo.runtime.datasource/org.nuxeo.runtime.datasource/ExtensionPoints/org.nuxeo.runtime.datasource--datasources",
              "id": "org.nuxeo.runtime.datasource--datasources",
              "label": "datasources (org.nuxeo.runtime.datasource)",
              "name": "datasources",
              "version": "7.10"
            }
          ],
          "extensions": [],
          "hierarchyPath": "/grp:org.nuxeo.runtime/org.nuxeo.runtime.datasource/org.nuxeo.runtime.datasource",
          "name": "org.nuxeo.runtime.datasource",
          "requirements": [],
          "services": [
            {
              "@type": "NXService",
              "componentId": "org.nuxeo.runtime.datasource",
              "hierarchyPath": "/grp:org.nuxeo.runtime/org.nuxeo.runtime.datasource/org.nuxeo.runtime.datasource/Services/org.nuxeo.runtime.datasource.PooledDataSourceRegistry",
              "id": "org.nuxeo.runtime.datasource.PooledDataSourceRegistry",
              "overriden": false,
              "version": "7.10"
            }
          ],
          "version": "7.10",
          "xmlFileContent": "<?xml version=\"1.0\"?>\n<component name=\"org.nuxeo.runtime.datasource\">\n\t<documentation>\n\t\tComponent use to register datasources.\n\n\t\tExample contribution:\n\n\t\t<code>\n\t\t\t<datasource name=\"jdbc/foo\" driverClassName=\"org.apache.derby.jdbc.EmbeddedDriver\"\n\t\t\t\tmaxActive=\"20\" maxIdle=\"5\" maxWait=\"10000\">\n\t\t\t\t<property name=\"url\">jdbc:derby:/home/db;create=true</property>\n\t\t\t\t<property name=\"username\">nuxeo</property>\n\t\t\t\t<property name=\"password\">********</property>\n\t\t\t</datasource>\n\t\t</code>\n\n\t\tOr, for a XA datasource:\n\n\t\t<code>\n\t\t\t<datasource name=\"jdbc/foo\"\n\t\t\t\txaDataSource=\"org.apache.derby.jdbc.EmbeddedXADataSource\" maxActive=\"20\"\n\t\t\t\tmaxIdle=\"5\" maxWait=\"10000\">\n\t\t\t\t<property name=\"databaseName\">/home/db</property>\n\t\t\t\t<property name=\"createDatabase\">create</property>\n\t\t\t\t<property name=\"user\">nuxeo</property>\n\t\t\t\t<property name=\"password\">********</property>\n\t\t\t</datasource>\n\t\t</code>\n\n\t\tThe allowed attributes of a\n\t\t<b>datasource</b>\n\t\telement are:\n\t\t<ul>\n\t\t\t<li>\n\t\t\t\t<b>name</b>\n\t\t\t\tthe JNDI name (for instance\n\t\t\t\t<tt>jdbc/foo</tt>\n\t\t\t\t)\n\t\t\t</li>\n\t\t\t<li>\n\t\t\t\t<b>driverClassName</b>\n\t\t\t\tthe JDBC driver class name (only for a non-XA datasource)\n\t\t\t</li>\n\t\t\t<li>\n\t\t\t\t<b>xaDataSource</b>\n\t\t\t\tthe XA datasource class name (only for a XA datasource)\n\t\t\t</li>\n\t\t</ul>\n\t\t<p />\n\t\tTo configure the characteristics of the pool:\n\t\t<ul>\n\t\t\t<li>\n\t\t\t\t<b>maxActive</b>\n\t\t\t\tthe maximum number of active connections\n\t\t\t</li>\n\t\t\t<li>\n\t\t\t\t<b>minIdle</b>\n\t\t\t\tthe minimum number of idle connections\n\t\t\t</li>\n\t\t\t<li>\n\t\t\t\t<b>maxIdle</b>\n\t\t\t\tthe maximum number of idle connections\n\t\t\t</li>\n\t\t\t<li>\n\t\t\t\t<b>maxWait</b>\n\t\t\t\tthe maximum number of milliseconds to wait for a connection to\n\t\t\t\tbe\n\t\t\t\tavailable, or -1 (the default) to wait indefinitely\n\t\t\t</li>\n\t\t\t<li>\n\t\t\t\t... see org.apache.commons.dbcp.BasicDataSource setters for more.\n\t\t\t</li>\n\t\t</ul>\n\t\t<p />\n\t\tTo configure the datasource, individual property sub-elements must be\n\t\tused.\n\t\tFor a non-XA datasource,\n\t\t<b>url</b>\n\t\t,\n\t\t<b>username</b>\n\t\tand\n\t\t<b>password</b>\n\t\tare commonly used. For a XA datasource, the properties are done\n\t\taccording\n\t\tto the JavaBean setters of the datasource, see the\n\t\tdocumentation for\n\t\tyour\n\t\tJDBC driver for more.\n\t</documentation>\n\n    <require>org.nuxeo.runtime.jtajca.JtaActivator</require>\n    \n\t<service>\n\t\t<provide interface=\"org.nuxeo.runtime.datasource.PooledDataSourceRegistry\" />\n\t</service>\n\n\t<implementation class=\"org.nuxeo.runtime.datasource.DataSourceComponent\" />\n\n\t<extension-point name=\"datasources\">\n\t\t<object class=\"org.nuxeo.runtime.datasource.DataSourceDescriptor\" />\n\t\t<object class=\"org.nuxeo.runtime.datasource.DataSourceLinkDescriptor\" />\n\t</extension-point>\n\n</component>\n",
          "xmlFileName": "/OSGI-INF/datasource-component.xml",
          "xmlPureComponent": false
        }
      ],
      "fileName": "nuxeo-runtime-datasource-7.10.jar",
      "groupId": "org.nuxeo.runtime",
      "hierarchyPath": "/grp:org.nuxeo.runtime/org.nuxeo.runtime.datasource",
      "id": "org.nuxeo.runtime.datasource",
      "location": "",
      "manifest": "Manifest-Version: 1.0\r\nArchiver-Version: Plexus Archiver\r\nCreated-By: 1.6.0_20 (Sun Microsystems Inc.)\r\nBuilt-By: hudson\r\nBuild-Jdk: 1.8.0_60\r\nBundle-ManifestVersion: 2\r\nBundle-Version: 0.0.0.SNAPSHOT\r\nExport-Package: org.nuxeo.runtime.datasource\r\nBundle-ActivationPolicy: lazy\r\nBundle-ClassPath: .\r\nBundle-Category: runtime\r\nBundle-Name: Nuxeo Runtime DataSource Implementation\r\nBundle-RequiredExecutionEnvironment: JavaSE-1.6\r\nBundle-Vendor: Nuxeo\r\nNuxeo-Component: OSGI-INF/datasource-component.xml\r\nImport-Package: javax.annotation;version=\"1.0\",javax.naming,javax.nami\r\n ng.spi,javax.sql,javax.transaction;version=\"1.1\",org.apache.commons.b\r\n eanutils,org.apache.commons.dbcp;version=\"1.3\",org.apache.commons.dbc\r\n p.managed;version=\"1.3\",org.apache.commons.logging,org.nuxeo.common.x\r\n map.annotation,org.nuxeo.runtime.api,org.nuxeo.runtime.model,org.nuxe\r\n o.runtime.transaction,org.w3c.dom\r\nBundle-SymbolicName: org.nuxeo.runtime.datasource;singleton:=true\r\nEclipse-RegisterBuddy: org.nuxeo.runtime,org.nuxeo.common\r\n\r\n",
      "packages": [],
      "requirements": [],
      "version": "7.10"
    }
  ],
  "creationDate": 1664792867649,
  "key": "Nuxeo Platform LTS 2015-7.10",
  "name": "Nuxeo Platform LTS 2015",
  "operations": [],
  "packages": [],
  "pluginSnapshots": {},
  "releaseDate": 1447023600000,
  "version": "7.10"
}